home *** CD-ROM | disk | FTP | other *** search
/ MacGames Sampler / PHT MacGames Bundle.iso / MacSource Folder / Samples from the CD / C and C++ / POSIX / ThinkCPosix / pwd.h < prev    next >
Text File  |  1992-09-11  |  173b  |  15 lines

  1. /* $Id: $ */
  2.  
  3. #pragma once
  4.  
  5. #include "sys/types.h"
  6.  
  7. struct passwd {
  8.   char *pw_name;
  9.   uid_t pw_uid;
  10.   gid_t pw_gid;
  11.   char *pw_dir;
  12.   char *pw_shell;
  13.   char *pw_passwd;
  14. };
  15.